home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / kernel / jumpto / jumpto.nt3 < prev    next >
Text File  |  1995-08-08  |  342b  |  20 lines

  1. /*
  2.     jumpto for the following environment
  3.     
  4.     OS:  NT 3.5 SP 2
  5.     Compiler: Microsoft Visual C++ 2.1
  6.     Copmiler options:  /YX /Od /Gfs
  7.                        /YX /Od /Gf
  8.                        
  9. */
  10.  
  11. __declspec(naked) void    _jumpToMethod(void (*function) (/* ??? */))
  12. {
  13.     __asm  {
  14.         mov    esp,ebp
  15.         pop    ebp
  16.         jmp    dword ptr [esp-20]
  17.     }
  18.  }
  19.  
  20.